home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 999 b | 31 lines | [TEXT/GEOL] |
- Item 8836549 21-Nov-88 22:30
-
- From: D1113 Peridom, Dev, Robert Dominy
-
- To: MACAPP.TEST MacApp SQA Team
- BIANCHI1 Bianchi, Curt
-
- cc: MACAPP.TECH$ MACAPP Tech
-
- Sub: Hiliting Bug in TTextListViews
-
- I found the bug I was having with hiliting in a TTextListView. It's actually
- in the initialization of TCellSelectCommand, where a couple of the command's
- fields do not get initialized. Adding these fixes the problem (see below):
-
- PROCEDURE TCellSelectCommand.ICellSelectCommand (itsView: TGridView;
- aCell: GridCell; theShiftKey, theCmdKey: BOOLEAN);
- BEGIN
- IGridSelectCommand (cCellSelect, itsView, theShiftKey, theCmdKey);
- fNewMouseDown := TRUE;
- fOldCell.h:= 0; { <------ add this}
- fOldCell.v:= 0; { <------ added this}
- fKeepSelecting:= FALSE; { <------ added this}
- END;
-
- Robert Dominy
- Peridom, Inc.
-
-
-
-